home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / CommandChooser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  524 b   |  26 lines  |  [TEXT/KAHL]

  1. /* CommandChooser.h */
  2.  
  3. #ifndef Included_CommandChooser_h
  4. #define Included_CommandChooser_h
  5.  
  6. /* CommandChooser module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* NoteObject */
  12. /* Screen */
  13. /* Memory */
  14. /* SimpleButton */
  15. /* StringList */
  16. /* Array */
  17. /* EventLoop */
  18.  
  19. #include "NoteObject.h"
  20.  
  21. /* display a scrolling list and let the user choose a command.  if the user cancels */
  22. /* then is returns False, otherwise True. */
  23. MyBoolean                    ChooseCommandFromList(NoteCommands* Command);
  24.  
  25. #endif
  26.